home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex29.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  154 b   |  11 lines

  1. Program Example29;
  2.  
  3. { Program to demonstrate the GetDir function. }
  4.  
  5. Var S : String;
  6.  
  7. begin
  8.   GetDir (0,S);
  9.   Writeln ('Current directory is : ',S);
  10. end.
  11.